Returns the items in the list.
シンタックス
'宣言
Public Function GetItems( _
Optional ByVal As System.Boolean, _
Optional ByVal As System.Nullable(Of Integer), _
Optional ByVal As System.Nullable(Of Integer) _
) As System.Collections.Generic.IEnumerable(Of Tuple(Of Integer,T))
public System.Collections.Generic.IEnumerable<Tuple<int,T>> GetItems(
System.bool ,
System.Nullable<int> ,
System.Nullable<int>
)
パラメータ
- onlyNonNullItems
- Only return those items that aren't null. Passing this parameter to true is convenient for huge lists having mostly nulls.
- from
- The starting index to return items.
- to
- The last index to return items.
参照